home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / MainWindowControl.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  1.1 KB  |  66 lines

  1. #import <appkit/appkit.h>
  2.  
  3. @class DecoderController;
  4.  
  5. @interface MainWindowControl:Object
  6. {
  7.     id    articleView;
  8.     id    sideSplitView;
  9.     id splitView;
  10.     id offscreenWindow;
  11.  
  12.     id upperPartLeft;
  13.     id upperPartRight;
  14.  
  15.     id theNGSet;
  16.     id theArticleSet;
  17.     id theArticleViewControl;
  18.  
  19.     id theNGSetMatrix;
  20.     id theArSetMatrix;
  21.  
  22.     id nntpServer;
  23.     id mainWindow;
  24.     id postButton;
  25.   
  26.     id myOwner;
  27.  
  28.     id killFile;
  29.     DecoderController * decoderController;
  30.     id otherNGView;
  31. }
  32.  
  33. - free;
  34. - (BOOL)connectNNTP:(const char *)sendername slowLink:(BOOL)slow;
  35. - disconnectAndClose:sender;
  36.  
  37. - nntpServer;
  38. - killFile;
  39. - articleText;
  40. - newsgroupMatrix;
  41. - articleMatrix;
  42. - articleViewControll;
  43. - newsgroupSet;
  44. - articleSet;
  45.  
  46. - (BOOL)articleSelected;
  47. - (BOOL)articlesSelected;
  48. - (BOOL)newsgroupSelected;
  49. - (BOOL)newsgroupsSelected;
  50.  
  51. - printText:sender;
  52. - uudecode:sender;
  53.  
  54. - forward:(SEL)aSelector :(marg_list)argFrame;
  55. - (BOOL)respondsTo:(SEL)aSelector;
  56.  
  57. - sideSplitViewDidResizeSubviews:sender;
  58. - splitViewDidResizeSubviews:sender;
  59.  
  60. - (BOOL)killAuthorEnabled;
  61. - (BOOL)sortCellEnabled:menueCell;
  62.  
  63. - windowWillClose:sender;
  64.  
  65. @end
  66.